/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    color: #000;
    /*background: #fff;*/
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
    font: 12px/1.5 'microsoft yahei', Helvetica, Arial, sans-serif;
}
input,
select,
textarea {
    font-size: 100%;
}
/* chrome 不允许选中时有边框 */
input,
textarea,
button,
select {
    outline: none;
}
textarea {
    overflow-y: auto;
    /* ie 下默认有竖直滚动条 */
    resize: none;
    /* chrome textarea 不允许更改大小 */
}
/* 去掉IE10文本框叉叉，密码框图标 */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
    border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
    border: 0;
    font-variant: normal;
}
/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
    list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
    text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}
q:before,
q:after {
    content: '';
}
/* 统一上标和下标 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
/* 正常链接 未访问 */
a {
    color: #19aa8d;
    outline: none;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
    text-decoration: none;
}
/* 代码字体 */
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
/* l-core-layout */
.l-container {
    margin: 0 auto;
}
.l-row {
    position: relative;
    zoom: 1;
}
.l-row:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}
.l-col-1,
.l-col-1-2,
.l-col-1-3,
.l-col-2-3,
.l-col-1-4,
.l-col-2-4,
.l-col-3-4,
.l-col-1-5,
.l-col-2-5,
.l-col-3-5,
.l-col-4-5,
.l-col-1-6,
.l-col-2-6,
.l-col-3-6,
.l-col-4-6,
.l-col-5-6,
.l-col-1-8,
.l-col-2-8,
.l-col-3-8,
.l-col-4-8,
.l-col-5-8,
.l-col-6-8,
.l-col-7-8,
.l-col-1-12,
.l-col-2-12,
.l-col-3-12,
.l-col-4-12,
.l-col-5-12,
.l-col-6-12,
.l-col-7-12,
.l-col-8-12,
.l-col-9-12,
.l-col-10-12,
.l-col-11-12 {
    float: left;
    display: inline;
}
.l-col-1 {
    width: 100%;
}
.l-col-1-2,
.l-col-2-4,
.l-col-3-6,
.l-col-4-8,
.l-col-6-12 {
    width: 50%;
}
.l-col-1-3,
.l-col-2-6,
.l-col-4-12 {
    width: 33.33333333%;
}
.l-col-2-3,
.l-col-4-6,
.l-col-8-12 {
    width: 66.66666667%;
}
.l-col-1-4,
.l-col-2-8,
.l-col-3-12 {
    width: 25%;
}
.l-col-3-4,
.l-col-6-8,
.l-col-9-12 {
    width: 75%;
}
.l-col-1-5 {
    width: 20%;
}
.l-col-2-5 {
    width: 40%;
}
.l-col-3-5 {
    width: 60%;
}
.l-col-4-5 {
    width: 80%;
}
.l-col-1-6,
.l-col-2-12 {
    width: 16.66666667%;
}
.l-col-5-6,
.l-col-10-12 {
    width: 83.33333333%;
}
.l-col-1-8 {
    width: 12.5%;
}
.l-col-3-8 {
    width: 37.5%;
}
.l-col-5-8 {
    width: 62.5%;
}
.l-col-7-8 {
    width: 87.5%;
}
.l-col-1-12 {
    width: 8.33333333%;
}
.l-col-5-12 {
    width: 41.66666667%;
}
.l-col-7-12 {
    width: 58.33333333%;
}
.l-col-11-12 {
    width: 91.66666667%;
}
/* margin-left */
.l-col-ml-0 {
    margin-left: 0;
}
.l-col-ml-1 {
    margin-left: 100%;
}
.l-col-ml-1-2,
.l-col-ml-2-4,
.l-col-ml-3-6,
.l-col-ml-4-8,
.l-col-ml-6-12 {
    margin-left: 50%;
}
.l-col-ml-1-3,
.l-col-ml-2-6,
.l-col-ml-4-12 {
    margin-left: 33.33333333%;
}
.l-col-ml-2-3,
.l-col-ml-4-6,
.l-col-ml-8-12 {
    margin-left: 66.66666667%;
}
.l-col-ml-1-4,
.l-col-ml-2-8,
.l-col-ml-3-12 {
    margin-left: 25%;
}
.l-col-ml-3-4,
.l-col-ml-6-8,
.l-col-ml-9-12 {
    margin-left: 75%;
}
.l-col-ml-1-5 {
    margin-left: 20%;
}
.l-col-ml-2-5 {
    margin-left: 40%;
}
.l-col-ml-3-5 {
    margin-left: 60%;
}
.l-col-ml-4-5 {
    margin-left: 80%;
}
.l-col-ml-1-6,
.l-col-ml-2-12 {
    margin-left: 16.66666667%;
}
.l-col-ml-5-6,
.l-col-ml-10-12 {
    margin-left: 83.33333333%;
}
.l-col-ml-1-8 {
    margin-left: 12.5%;
}
.l-col-ml-3-8 {
    margin-left: 37.5%;
}
.l-col-ml-5-8 {
    margin-left: 62.5%;
}
.l-col-ml-7-8 {
    margin-left: 87.5%;
}
.l-col-ml-1-12 {
    margin-left: 8.33333333%;
}
.l-col-ml-5-12 {
    margin-left: 41.66666667%;
}
.l-col-ml-7-12 {
    margin-left: 58.33333333%;
}
.l-col-ml-11-12 {
    margin-left: 91.66666667%;
}
/* margin-right */
.l-col-mr-0 {
    margin-right: 0;
}
.l-col-mr-1 {
    margin-right: 100%;
}
.l-col-mr-1-2,
.l-col-mr-2-4,
.l-col-mr-3-6,
.l-col-mr-4-8,
.l-col-mr-6-12 {
    margin-right: 50%;
}
.l-col-mr-1-3,
.l-col-mr-2-6,
.l-col-mr-4-12 {
    margin-right: 33.33333333%;
}
.l-col-mr-2-3,
.l-col-mr-4-6,
.l-col-mr-8-12 {
    margin-right: 66.66666667%;
}
.l-col-mr-1-4,
.l-col-mr-2-8,
.l-col-mr-3-12 {
    margin-right: 25%;
}
.l-col-mr-3-4,
.l-col-mr-6-8,
.l-col-mr-9-12 {
    margin-right: 75%;
}
.l-col-mr-1-5 {
    margin-right: 20%;
}
.l-col-mr-2-5 {
    margin-right: 40%;
}
.l-col-mr-3-5 {
    margin-right: 60%;
}
.l-col-mr-4-5 {
    margin-right: 80%;
}
.l-col-mr-1-6,
.l-col-mr-2-12 {
    margin-right: 16.66666667%;
}
.l-col-mr-5-6,
.l-col-mr-10-12 {
    margin-right: 83.33333333%;
}
.l-col-mr-1-8 {
    margin-right: 12.5%;
}
.l-col-mr-3-8 {
    margin-right: 37.5%;
}
.l-col-mr-5-8 {
    margin-right: 62.5%;
}
.l-col-mr-7-8 {
    margin-right: 87.5%;
}
.l-col-mr-1-12 {
    margin-right: 8.33333333%;
}
.l-col-mr-5-12 {
    margin-right: 41.66666667%;
}
.l-col-mr-7-12 {
    margin-right: 58.33333333%;
}
.l-col-mr-11-12 {
    margin-right: 91.66666667%;
}
/* left */
.l-col-l-0,
.l-col-l-1,
.l-col-l-1-2,
.l-col-l-1-3,
.l-col-l-2-3,
.l-col-l-1-4,
.l-col-l-2-4,
.l-col-l-3-4,
.l-col-l-1-5,
.l-col-l-2-5,
.l-col-l-3-5,
.l-col-l-4-5,
.l-col-l-1-6,
.l-col-l-2-6,
.l-col-l-3-6,
.l-col-l-4-6,
.l-col-l-5-6,
.l-col-l-1-8,
.l-col-l-2-8,
.l-col-l-3-8,
.l-col-l-4-8,
.l-col-l-5-8,
.l-col-l-6-8,
.l-col-l-7-8,
.l-col-l-1-12,
.l-col-l-2-12,
.l-col-l-3-12,
.l-col-l-4-12,
.l-col-l-5-12,
.l-col-l-6-12,
.l-col-l-7-12,
.l-col-l-8-12,
.l-col-l-9-12,
.l-col-l-10-12,
.l-col-l-11-12 {
    position: absolute;
    top: 0;
}
.l-col-l-0 {
    left: auto;
}
.l-col-l-1 {
    left: 100%;
}
.l-col-l-1-2,
.l-col-l-2-4,
.l-col-l-3-6,
.l-col-l-4-8,
.l-col-l-6-12 {
    left: 50%;
}
.l-col-l-1-3,
.l-col-l-2-6,
.l-col-l-4-12 {
    left: 33.33333333%;
}
.l-col-l-2-3,
.l-col-l-4-6,
.l-col-l-8-12 {
    left: 66.66666667%;
}
.l-col-l-1-4,
.l-col-l-2-8,
.l-col-l-3-12 {
    left: 25%;
}
.l-col-l-3-4,
.l-col-l-6-8,
.l-col-l-9-12 {
    left: 75%;
}
.l-col-l-1-5 {
    left: 20%;
}
.l-col-l-2-5 {
    left: 40%;
}
.l-col-l-3-5 {
    left: 60%;
}
.l-col-l-4-5 {
    left: 80%;
}
.l-col-l-1-6,
.l-col-l-2-12 {
    left: 16.66666667%;
}
.l-col-l-5-6,
.l-col-l-10-12 {
    left: 83.33333333%;
}
.l-col-l-1-8 {
    left: 12.5%;
}
.l-col-l-3-8 {
    left: 37.5%;
}
.l-col-l-5-8 {
    left: 62.5%;
}
.l-col-l-7-8 {
    left: 87.5%;
}
.l-col-l-1-12 {
    left: 8.33333333%;
}
.l-col-l-5-12 {
    left: 41.66666667%;
}
.l-col-l-7-12 {
    left: 58.33333333%;
}
.l-col-l-11-12 {
    left: 91.66666667%;
}
.l-form .l-col-1,
.l-form .l-col-1-2,
.l-form .l-col-1-3,
.l-form .l-col-2-3,
.l-form .l-col-1-4,
.l-form .l-col-2-4,
.l-form .l-col-3-4,
.l-form .l-col-1-5,
.l-form .l-col-2-5,
.l-form .l-col-3-5,
.l-form .l-col-4-5,
.l-form .l-col-1-6,
.l-form .l-col-2-6,
.l-form .l-col-3-6,
.l-form .l-col-4-6,
.l-form .l-col-5-6,
.l-form .l-col-1-8,
.l-form .l-col-2-8,
.l-form .l-col-3-8,
.l-form .l-col-4-8,
.l-form .l-col-5-8,
.l-form .l-col-6-8,
.l-form .l-col-7-8,
.l-form .l-col-1-12,
.l-form .l-col-2-12,
.l-form .l-col-3-12,
.l-form .l-col-4-12,
.l-form .l-col-5-12,
.l-form .l-col-6-12,
.l-form .l-col-7-12,
.l-form .l-col-8-12,
.l-form .l-col-9-12,
.l-form .l-col-10-12,
.l-form .l-col-11-12 {
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 0 5px;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.l-layout-dl {
    /*display: inline-block;*/
    /*width: 100%;*/
    padding-bottom: 5px;
    color: #808080;
    font-size: 12px;
    /*line-height: 2.2;*/
    zoom: 1;
}
.l-layout-dl:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}
.l-layout-dl-dt {
    float: left;
    /*width: 110px;*/
    width: 100%;
    margin: 5px 0 0 0;
}
.l-layout-dl-dd {
    float: left;
    /*width: 210px;*/
    width: 100%;
    text-align: left;
    margin: 5px 0 0 0;
}
/* l-core-util */
.l-util-hide {
    display: none;
}
.l-util-relative {
    position: relative;
}
.l-util-clear {
    zoom: 1;
}
.l-util-clear:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.l-bold {
    font-weight: 700;
}
.l-nowrap {
    white-space: normal!important;
}
.l-util-tl {
    text-align: left;
}
.l-util-tc {
    text-align: center;
}
.l-util-tr {
    text-align: right;
}
.l-util-mt5 {
    margin-top: 5px;
}
.l-util-mt10 {
    margin-top: 10px;
}
.l-util-mt15 {
    margin-top: 15px;
}
.l-util-mt20 {
    margin-top: 20px;
}
.l-util-mr5 {
    margin-right: 5px;
}
.l-util-mr10 {
    margin-right: 10px;
}
.l-util-mb5 {
    margin-bottom: 5px;
}
.l-util-mb10 {
    margin-bottom: 10px;
}
.l-util-mb20 {
    margin-bottom: 20px;
}
.l-util-mb30 {
    margin-bottom: 30px;
}
.l-util-ml5 {
    margin-left: 5px;
}
.l-util-ml10 {
    margin-left: 10px;
}
.l-util-ml20 {
    margin-left: 20px;
}
.l-util-pt30 {
    padding-top: 30px;
}
.l-util-pl10 {
    padding-left: 10px;
}
.l-util-pr10 {
    padding-right: 10px;
}
.l-util-fl {
    float: left;
}
.l-util-fr {
    float: right;
}
.l-font12 {
    font-size: 12px !important;
}
.l-font14 {
    font-size: 14px !important;
}
.l-ling-height2 {
    line-height: 2!important;
}
.l-util-opacity6 {
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: 0.6;
}
.l-util-unselectable {
    user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-drag: none;
    cursor: default;
}

@font-face {
    font-family: 'jenny';
    src: url('fonts/iconfont.eot');
    src: url('fonts/iconfont.eot?#iefix') format('embedded-opentype'), url('fonts/iconfont.woff') format('woff'), url('fonts/iconfont.ttf') format('truetype'), url('fonts/iconfont.svg#jenny') format('svg');
    font: normal normal normal 14px/1 jenny;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke-width: 0.2px;
    display: inline-block;
}